UNPKG

@nadeshikon/plugin-nextjs

Version:
15 lines (13 loc) 279 B
export default function Layout({ children }) { return ( <html> <head> <title>Hello</title> </head> <body>{children}</body> </html> ) } export function generateStaticParams() { return [{ slug: 'slug1' }, { slug: 'slug2' }] }